.gallery-luxury-section {
    background-color: #f6f2e9;
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.split-focus-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.2fr;
    gap: 60px;
    align-items: stretch;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-focus-hero {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-hero-clickable {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease;
    display: block;
    cursor: zoom-in;
}

.gallery-focus-hero:hover img {
    transform: scale(1.05);
}

.gallery-focus-narrative {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.gallery-label {
    font-size: 14px;
    color: #888;
    text-transform: none;
    margin-bottom: 30px;
    display: block;
}

.gallery-editorial-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

.gallery-editorial-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 60px;
    opacity: 0.8;
    max-width: 450px;
}

.btn-editorial {
    background: #fff;
    color: #000;
    padding: 15px 40px;
    border: none;
    text-transform: none;
    font-weight: 500;
    font-size: 16px;
    width: fit-content;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-editorial:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.gallery-focus-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.thumb-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.thumb-item:hover img,
.thumb-item.active img {
    filter: grayscale(0%);
    opacity: 1;
}

.thumb-item.active {
    border-color: var(--primary-color);
}

@media (max-width: 1400px) {
    .gallery-editorial-title {
        font-size: 48px;
    }

    .split-focus-container {
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .split-focus-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-focus-hero {
        height: 500px;
        order: 1;
    }

    .gallery-focus-thumbs {
        order: 2;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-focus-narrative {
        order: 3;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .thumb-item {
        width: 80px;
    }

    .gallery-editorial-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .gallery-focus-hero {
        height: 400px;
    }

    .gallery-editorial-title {
        font-size: 36px;
    }
}